home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995 August: Tool Chest / Dev.CD Aug 95 TC / Dev.CD Aug 95 TC.toast / Tool Chest / Development Tools & Languages / Dylan Related / Mindy / Mindy 1.2 - portable sources / etc / Makefile.in < prev    next >
Encoding:
Makefile  |  1995-03-15  |  2.2 KB  |  87 lines  |  [TEXT/ttxt]

  1. ######################################################################
  2. ##
  3. ## Copyright (c) 1994  Carnegie Mellon University
  4. ## All rights reserved.
  5. ## 
  6. ## Use and copying of this software and preparation of derivative
  7. ## works based on this software are permitted, including commercial
  8. ## use, provided that the following conditions are observed:
  9. ## 
  10. ## 1. This copyright notice must be retained in full on any copies
  11. ##    and on appropriate parts of any derivative works.
  12. ## 2. Documentation (paper or online) accompanying any system that
  13. ##    incorporates this software, or any part of it, must acknowledge
  14. ##    the contribution of the Gwydion Project at Carnegie Mellon
  15. ##    University.
  16. ## 
  17. ## This software is made available "as is".  Neither the authors nor
  18. ## Carnegie Mellon University make any warranty about the software,
  19. ## its performance, or its conformity to any specification.
  20. ## 
  21. ## Bug reports, questions, comments, and suggestions should be sent by
  22. ## E-mail to the Internet address "gwydion-bugs@cs.cmu.edu".
  23. ##
  24. ######################################################################
  25. ##
  26. ##  $Header: Makefile.in,v 1.3 94/10/08 20:35:31 nkramer Exp $
  27. ##
  28. ##  This is the makefile for the Mindy load and go executive
  29. ##    and any other small programs that might be useful.
  30. ##
  31.  
  32. SHELL    =    /bin/sh
  33.  
  34. ##
  35. ## begin autoconf'ed source
  36. ##
  37.  
  38. prefix    =        @prefix@
  39. exec_prefix    =    @exec_prefix@
  40. srcdir    =        @srcdir@
  41.  
  42. SRCDIR    =        ${srcdir}
  43. BINDIR    =        ${exec_prefix}/bin
  44. LIBDIR    =        ${exec_prefix}/lib/mindy
  45.  
  46. CC    =        @CC@
  47. CCOPTS    =        @CCOPTS@
  48. CFLAGS    =        $(CCOPTS) -I${SRCDIR} @DEFS@ -DBINDIR=\"${BINDIR}\" -DLIBDIR=\"${LIBDIR}\"
  49. YACC    =        @YACC@
  50. YFLAGS    =        -d
  51. LEX    =        @LEX@
  52. LFLAGS    =        @LFLAGS@
  53. RANLIB    =        @RANLIB@
  54. INSTALL    =        @INSTALL@
  55. INSTALL_PROGRAM    =    @INSTALL_PROGRAM@
  56. INSTALL_DATA    =    @INSTALL_DATA@
  57.  
  58. LIBOBJS =        @LIBOBJS@
  59. LIBS    =        ../compat/libcompat.a @LIBS@
  60.  
  61. ##
  62. ## end of configure written portion
  63. ##
  64.  
  65. OBJS    = mindyexec.o
  66.  
  67. SRCS    = mindyexec.c
  68.  
  69. all:    mindyexec
  70.  
  71. mindyexec: mindyexec.o
  72.     ${CC} mindyexec.o ${LIBS} -o ,$@
  73.     mv ,$@ $@
  74.  
  75. mindyexec.o: ${SRCDIR}/mindyexec.c
  76.     ${CC} -c ${CFLAGS} ${SRCDIR}/mindyexec.c
  77.  
  78. clean:
  79.     rm -f ${OBJS} mindyexec *~ \#* core
  80.  
  81. realclean:
  82.     rm -f ${OBJS} mindyexec Makefile *~ \#* core
  83.     
  84. install: mindyexec
  85.     ${INSTALL_PROGRAM} mindyexec ${BINDIR}/mindyexec
  86.  
  87.